ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: dimgray;
}

li{
	float: right;
}

li a{
	display: block;
	color: white;
	padding: 15px 30px;
	text-decoration: none;
}
/* CSS Document */
.special{
	float: left;
	display:list-item;
	text-align: left; 
	
}
footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: dimgray;
	color: white;
	text-align: center; 
}
body{
	background-color: darkcyan; 
}
* {box-sizing: border-box;}

.img-zoom-container {
  position: relative;
}

.img-zoom-lens {
  position: absolute;
  border: 1px solid #d4d4d4;
  /*set the size of the lens:*/
  width: 40px;
  height: 40px;
}

.img-zoom-result {
  border: 1px solid #d4d4d4;
  /*set the size of the result div:*/
  width: 300px;
  height: 300px;
}